func syscall.ptrace
10 uses
syscall (current package)
syscall_linux.go#L913: err = ptrace(pokeReq, pid, addr-addr%sizeofPtr, word)
syscall_linux.go#L923: err = ptrace(pokeReq, pid, addr+uintptr(n), word)
syscall_linux.go#L940: err = ptrace(pokeReq, pid, addr+uintptr(n), word)
syscall_linux.go#L977: return ptrace(PTRACE_SETOPTIONS, pid, 0, uintptr(options))
syscall_linux.go#L988: return ptrace(PTRACE_CONT, pid, 0, uintptr(signal))
syscall_linux.go#L992: return ptrace(PTRACE_SYSCALL, pid, 0, uintptr(signal))
syscall_linux.go#L995: func PtraceSingleStep(pid int) (err error) { return ptrace(PTRACE_SINGLESTEP, pid, 0, 0) }
syscall_linux.go#L997: func PtraceAttach(pid int) (err error) { return ptrace(PTRACE_ATTACH, pid, 0, 0) }
syscall_linux.go#L999: func PtraceDetach(pid int) (err error) { return ptrace(PTRACE_DETACH, pid, 0, 0) }
zsyscall_linux_amd64.go#L218: func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {